Small Website to play Web-based games.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

16 рядки
343 B

  1. import type { NextPage } from 'next'
  2. import {GetServerSideProps} from 'next';
  3. const GameLandingPage: NextPage = () => null
  4. export const getServerSideProps: GetServerSideProps = async (ctx) => {
  5. return {
  6. redirect: {
  7. destination: `/games/${ctx.query.id}/play`,
  8. permanent: false,
  9. },
  10. };
  11. }
  12. export default GameLandingPage